home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cbibcode.arc / NORMVIDO.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-05  |  261 b   |  13 lines

  1. /* p888.c --- bible */
  2. #include <conio.h>
  3. main()
  4. {
  5.     window(20, 10, 60, 20);
  6.     textbackground(CYAN);
  7.     textcolor(RED);
  8.     clrscr();
  9.     gotoxy(10, 2);
  10.     cputs("This is the current attribute\n\r");
  11.     normvideo();
  12.     cputs("This is after calling 'normvideo'");
  13. }